home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / select-to-image.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  90 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Selection to Image
  5. ; Copyright (c) 1997 Adrian Likins
  6. ; aklikins@eos.ncsu.edu
  7. ;
  8. ; Takes the Current selection and saves it as a seperate image.
  9. ;
  10. ;
  11. ; This program is free software; you can redistribute it and/or modify
  12. ; it under the terms of the GNU General Public License as published by
  13. ; the Free Software Foundation; either version 2 of the License, or
  14. ; (at your option) any later version.
  15. ;
  16. ; This program is distributed in the hope that it will be useful,
  17. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ; GNU General Public License for more details.
  20. ;
  21. ; You should have received a copy of the GNU General Public License
  22. ; along with this program; if not, write to the Free Software
  23. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25.  
  26. (define (script-fu-selection-to-image image drawable)
  27.   (let* (
  28.         (draw-type (car (gimp-drawable-type-with-alpha drawable)))
  29.         (image-type (car (gimp-image-base-type image)))
  30.         (selection-bounds (gimp-selection-bounds image))
  31.         (select-offset-x (cadr selection-bounds))
  32.         (select-offset-y (caddr selection-bounds))
  33.         (selection-width (- (cadr (cddr selection-bounds)) select-offset-x))
  34.         (selection-height (- (caddr (cddr selection-bounds)) select-offset-y))
  35.         (active-selection 0)
  36.         (from-selection 0)
  37.         (new-image 0)
  38.         (new-draw 0)
  39.         )
  40.  
  41.     (gimp-context-push)
  42.  
  43.     (gimp-image-undo-disable image)
  44.  
  45.     (if (= (car (gimp-selection-is-empty image)) TRUE)
  46.         (begin
  47.           (gimp-selection-layer-alpha drawable)
  48.           (set! active-selection (car (gimp-selection-save image)))
  49.           (set! from-selection FALSE)
  50.         )
  51.         (begin
  52.           (set! from-selection TRUE)
  53.           (set! active-selection (car (gimp-selection-save image)))
  54.         )
  55.     )
  56.  
  57.     (gimp-edit-copy drawable)
  58.  
  59.     (set! new-image (car (gimp-image-new selection-width
  60.                                          selection-height image-type)))
  61.     (set! new-draw (car (gimp-layer-new new-image
  62.                                         selection-width selection-height
  63.                                         draw-type "Selection" 100 NORMAL-MODE)))
  64.     (gimp-image-add-layer new-image new-draw 0)
  65.     (gimp-drawable-fill new-draw BACKGROUND-FILL)
  66.  
  67.     (let ((floating-sel (car (gimp-edit-paste new-draw FALSE))))
  68.       (gimp-floating-sel-anchor floating-sel)
  69.     )
  70.  
  71.     (gimp-image-undo-enable image)
  72.     (gimp-image-set-active-layer image drawable)
  73.     (gimp-display-new new-image)
  74.     (gimp-displays-flush)
  75.  
  76.     (gimp-context-pop)
  77.   )
  78. )
  79.  
  80. (script-fu-register "script-fu-selection-to-image"
  81.   _"To _Image"
  82.   _"Convert a selection to an image"
  83.   "Adrian Likins <adrian@gimp.org>"
  84.   "Adrian Likins"
  85.   "10/07/97"
  86.   "RGB* GRAY*"
  87.   SF-IMAGE "Image"       0
  88.   SF-DRAWABLE "Drawable" 0
  89. )
  90.